de0501e3cb50e6df0542b32287f64fb0a70c2f28,app/src/main/java/com/camnter/newlife/utils/hotfix/HotPatchApplication.java,HotPatchApplication,onCreate,#,29

Before Change


            .concat("/patch_dex.jar");
        File file = new File(dexPath);
        if (file.exists()) {
            this.inject(dexPath);
        } else {
            Log.e("", "Dex patch �存在");
        }

After Change


        String dexPath = Environment.getExternalStorageDirectory()
            .getAbsolutePath()
            .concat("/patch_dex.jar");
        HotPatch.inject(dexPath, this);
    }

}